type crypto/ecdsa.nistPoint

9 uses

	crypto/ecdsa (current package)
		ecdsa.go#L184: func generateNISTEC[Point nistPoint[Point]](c *nistCurve[Point], rand io.Reader) (*PrivateKey, error) {
		ecdsa.go#L202: func randomPoint[Point nistPoint[Point]](c *nistCurve[Point], rand io.Reader) (k *bigmod.Nat, p Point, err error) {
		ecdsa.go#L291: func signNISTEC[Point nistPoint[Point]](c *nistCurve[Point], priv *PrivateKey, csprng io.Reader, hash []byte) (sig []byte, err error) {
		ecdsa.go#L366: func inverse[Point nistPoint[Point]](c *nistCurve[Point], kInv, k *bigmod.Nat) {
		ecdsa.go#L386: func hashToNat[Point nistPoint[Point]](c *nistCurve[Point], e *bigmod.Nat, hash []byte) {
		ecdsa.go#L496: func verifyNISTEC[Point nistPoint[Point]](c *nistCurve[Point], pub *PublicKey, hash, sig []byte) bool {
		ecdsa.go#L562: type nistCurve[Point nistPoint[Point]] struct {
		ecdsa.go#L570: type nistPoint[T any] interface {
		ecdsa.go#L663: func precomputeParams[Point nistPoint[Point]](c *nistCurve[Point], curve elliptic.Curve) {